home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / gensymantec.bat < prev    next >
DOS Batch File  |  1998-10-27  |  1KB  |  23 lines

  1. REM -------------------------------------------------------------
  2. REM Generating symantec javadoc documentation in ..\docs\symantec
  3. REM -------------------------------------------------------------
  4. @echo off
  5. REM Input:  symantec.* sources under ..\..\java\src
  6. REM         com.symantec.* sources under ..\..\green\java\src\com
  7. REM Output: HTML doc under ..\docs\symantec
  8. REM         sources copied locally
  9.  
  10. if not exist ..\docs\symantec md ..\docs\symantec
  11. xcopy ..\..\java\src\symantec\*.java symantec\ /S >nul
  12. xcopy ..\..\green\java\src\com\*.java com\ /S >nul
  13. if not exist com\symantec\itools\vcafe\macro md com\symantec\itools\vcafe\macro
  14. xcopy ..\..\aruba\CMDCORE\stubs\VisualCafeCommand.java com\symantec\itools\vcafe\macro\ >nul
  15.  
  16. ..\..\bin\sj @symantec.rsp
  17.  
  18. echo Skipped generation for following packages due to errors because of missing classes:
  19. echo symantec.itools.db.awt[...] no symantec.itools.db.net and symantec.itools.db.pro
  20. echo symantec.itools.db.pro no symantec.itools.db.pro.RelationView and symantec.itools.db.pro.Session
  21. echo symantec.itools.db.beans.jdbc requires com.ms.security
  22. echo symantec.itools.db.beans.jdbc.editors requires com.ms.security
  23.